msg_tool\scripts\hexen_haus\archive/
mod.rs

1pub mod arcc;
2pub mod odio;
3pub mod wag;
4
5use crate::types::ScriptType;
6
7fn detect_script_type(_filename: &str, buf: &[u8]) -> Option<ScriptType> {
8    if buf.len() >= 4 && buf.starts_with(b"NORI") {
9        return Some(ScriptType::HexenHaus);
10    }
11    #[cfg(feature = "hexen-haus-img")]
12    if buf.len() >= 4 && buf.starts_with(b"IMGD") {
13        return Some(ScriptType::HexenHausPng);
14    }
15    None
16}